home *** CD-ROM | disk | FTP | other *** search
- /*
- ### procedure for selecting the x-projection coordinate of combined space ###
- */
-
- #include <suntool/sunview.h>
- #include <suntool/panel.h>
-
- void
- aux_x_proc(item,value,event)
- Panel_item item;
- int value;
- Event *event;
- {
- int i,aux_i;
- extern int aux_max,*aux_on;
- extern int **aux_cur_index;
- extern Panel_item *aux_x_item;
-
- for(i=0;i<aux_max;i++){
- if(item == aux_x_item[i]){
- aux_i = i;
- break;
- }
- }
- aux_cur_index[aux_i][0] = value;
- aux_refresh(aux_i);
- }
-
-
-